home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / containers / utilityClasses / IConstraintLayout.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  333 b   |  15 lines

  1. package mx.containers.utilityClasses
  2. {
  3.    public interface IConstraintLayout
  4.    {
  5.       function get constraintColumns() : Array;
  6.       
  7.       function set constraintRows(param1:Array) : void;
  8.       
  9.       function get constraintRows() : Array;
  10.       
  11.       function set constraintColumns(param1:Array) : void;
  12.    }
  13. }
  14.  
  15.